studiocms
Version:
Astro Native CMS for AstroDB. Built from the ground up by the Astro community.
17 lines (16 loc) • 729 B
TypeScript
import { Schema } from '../../../../../../effect.js';
declare const FolderBase_base: Schema.Class<FolderBase, {
folderName: typeof Schema.String;
parentFolder: Schema.Union<[typeof Schema.String, typeof Schema.Null]>;
}, Schema.Struct.Encoded<{
folderName: typeof Schema.String;
parentFolder: Schema.Union<[typeof Schema.String, typeof Schema.Null]>;
}>, never, {
readonly parentFolder: string | null;
} & {
readonly folderName: string;
}, {}, {}>;
export declare class FolderBase extends FolderBase_base {
}
export declare const GET: import("astro").APIRoute, PATCH: import("astro").APIRoute, DELETE: import("astro").APIRoute, OPTIONS: import("astro").APIRoute, ALL: import("astro").APIRoute;
export {};